home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / nt / source.exe / POSIX / MAKE / EMALLOC.C < prev    next >
Encoding:
Text File  |  1992-07-02  |  78 b   |  8 lines

  1. char *emalloc(int cnt)
  2. {
  3.     char
  4.         *malloc ();
  5.  
  6.     return (malloc(cnt));
  7. }
  8.